/************************************************************
**
** Application: CJLib
**
** Title:       h.debug
**
*************************************************************/

#ifndef DEBUG___H
#define DEBUG___H

#include "oslib/os.h"

#define DB_ENABLE TRUE
#define DB_DISABLE FALSE
#define DB_CLEAR TRUE
#define DB_APPEND FALSE

/* exported variables */


/* exported functions */
extern void CJL_db_printf (osbool close, char * format, ...);
extern void CJL_db_ts_printf (osbool close, char * format, ...);
extern void CJL_db_force_enable (osbool state);
extern void CJL_db_clear_file (void);
extern void CJL_db_close_file (void);
extern void  CJL_db_init ( osbool clear, char *name, char *dir );

#endif






